home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_13_web button.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  603 b   |  24 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to "web.roll"
  4.   set the text of field "rollover text" to "Click here to launch the website."
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the member of sprite the currentSpriteNum to "web.up"
  10.   set the text of field "rollover text" to EMPTY
  11. end
  12.  
  13. on mouseDown me
  14.   set the member of sprite the currentSpriteNum to "web.down"
  15. end
  16.  
  17. on mouseUp me
  18.   set the member of sprite the currentSpriteNum to "web.up"
  19.   if the machineType = 256 then
  20.     open(the text of field "webPath", the text of field "browserSelect")
  21.   else
  22.   end if
  23. end
  24.